home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / CascadeB.h.z / CascadeB.h
C/C++ Source or Header  |  2002-10-15  |  2KB  |  60 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: CascadeB.h /main/12 1995/07/14 10:13:57 drk $ */
  12. /*
  13. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  14. /*
  15. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  16. #ifndef _XmCascadeB_h
  17. #define _XmCascadeB_h
  18.  
  19. #include <Xm/Xm.h>
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. externalref WidgetClass xmCascadeButtonWidgetClass;
  26.  
  27. typedef struct _XmCascadeButtonRec      * XmCascadeButtonWidget;
  28. typedef struct _XmCascadeButtonClassRec * XmCascadeButtonWidgetClass;
  29.  
  30. /* fast subclass define */
  31. #ifndef XmIsCascadeButton 
  32. #define XmIsCascadeButton(w) XtIsSubclass(w, xmCascadeButtonWidgetClass)
  33. #endif /* XmIsCascadeButton */
  34.  
  35.  
  36. /********    Public Function Declarations    ********/
  37.  
  38. extern Widget XmCreateCascadeButton( 
  39.                         Widget parent,
  40.                         char *name,
  41.                         ArgList al,
  42.                         Cardinal ac) ;
  43. extern void XmCascadeButtonHighlight( 
  44.                         Widget cb,
  45. #if NeedWidePrototypes
  46.                         int highlight) ;
  47. #else
  48.                         Boolean highlight) ;
  49. #endif /* NeedWidePrototypes */
  50.  
  51. /********    End Public Function Declarations    ********/
  52.  
  53.  
  54. #ifdef __cplusplus
  55. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  56. #endif
  57.  
  58. #endif /* _XmCascadeB_h */
  59. /* DON'T ADD STUFF AFTER THIS #endif */
  60.